home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / shareware / applications / jcgraph / rexx / spacex.rex < prev    next >
OS/2 REXX Batch file  |  1994-11-17  |  484b  |  20 lines

  1. /* SpaceX.rex */
  2. /* ---------- */
  3. /* Description: Ask for X axis space value and set it accordingly. No   */
  4. /*              validation is done on the value entered , so, be        */
  5. /*              careful.                                                */
  6.  
  7. options results
  8.  
  9. address 'JCGRAPH'
  10.  
  11. 'GetTypeValue 23'
  12. FontSpace=result
  13.  
  14. 'requestnumber Enter X axis font space please. Actual font space is:' FontSpace
  15.  
  16. FontSpace=result
  17.  
  18. if RC == 0 then do
  19.   'SetTypeValue 23 ' FontSpace
  20. end